home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 17 / CU Amiga Magazine's Super CD-ROM 17 (1997)(EMAP Images)(GB)[!][issue 1997-12].iso / CUCD / Programming / DiceSource / src / editors / AME / s / ame_pro.ame
Encoding:
Text File  |  1994-02-01  |  1.2 KB  |  46 lines

  1. /* $VER: AME_PRO 37.5 (12.2.94) : AME Init file for DICE */
  2.  
  3. /* Add a couple useful menu items for working with DICE */
  4. BAR '-1'
  5. ITEM '-1 "DMake" "rx dcc:rexx/compile"'
  6. ITEM '-1 "Dice Help (F5)" "rx dcc:rexx/dicehelp"'
  7. ITEM '-1 "Next Error (Shift F5)" "rx dcc:rexx/nexterror"'
  8.  
  9. ITEM '-1 "Icons" "setprefs icons"'
  10. ITEM '-1 "No Icons" "unsetprefs icons"'
  11. onmenu
  12.  
  13.  
  14. /* arexx STDOUT to an con: window */
  15. setprefs RXCON "*"
  16.  
  17. alias "dicehelp rx dcc:rexx/dicehelp"
  18.  
  19. bindkey "describekey F1"
  20. bindkey "deleteline F2"
  21. bindkey 'stringrx F3 "movebol;killline;yank;movebol;movedown;yank;movebol"'
  22. bindkey 'stringrx F4'
  23. bindkey "dicehelp F5"
  24. bindkey 'rx Shift-F5 dcc:rexx/nexterror'
  25.  
  26. bindkey "foldfunction F6"
  27. bindkey "foldblock F7"
  28. bindkey "show F8"
  29. bindkey "hide F9"
  30. bindkey "unfold F10"
  31.  
  32. /* setprefs UNDO */
  33.  
  34.  
  35. /* AME standard options (commented out).  Uncomment any you like. */
  36.  
  37. /* rx "dcc:rexx/me_menu.ame"    /* Use MEMACS 2.04 style menus */ */
  38. /* rx "dcc:rexx/setoldfind.ame"    /* Switch to non-incremental find */ */
  39. /* rx "dcc:rexx/multiwindow.ame"    /* Switch AME to multiwindow mode */ */
  40. /* rx "dcc:rexx/auxinit.ame"    /* Init options for AME remote use */ */
  41. /* rx "dcc:rexx/vactive.ame"    /* Add menu items for AME requesters */ */
  42.  
  43.  
  44.  
  45.  
  46.